home *** CD-ROM | disk | FTP | other *** search
- MOVE
-
- MOVE is sort of a cross between COPY and VDEL.
- PC DOS version 2.00 or greater is required.
- Options may be preceded by "/" or by " -".
-
- Version 1.1 cleans up after a full-disk error and optionally
- allow the user to change the target disk.
-
- The following is produced by entering MOVE > MOVE.DOC --
-
- [MOVE Version 1.1]
- The MOVE utility is a COPY which prompts at each file.
-
- Syntax:
- MOVE [SourceDir]FileSpec [TargetDir] [OptionList]
-
- OptionsList:
- /Erase -Erase Erase each file after successful copy.
- /Terse -Terse Suppress version message, instructions.
- /Yes -Yes Automatic "Yes" response to each query.
- /Change -Change Allow changing target disk on Full Disk.
- [source and target disks must be different]
-
- Public Domain 1984,1987 by Lewis Haupt
- Box 25363, Houston, Texas 77265
-
- Examples --
- -- Copy using full directory specifications.
- C> MOVE C:\DIRA\*.* C:\DIRB:
-
- [MOVE Version 1.1]
- Press Y to copy, N to skip, ESC to stop.
-
- Copy ABCD.DOC? Yes
- Copy EDGHI.DOC? No
- Copy JKL.DOC? Yes
- Copy MNOP.DOC? Stop
-
- -- Copy from A: to current disk and directory.
- -- Delete each file after it's moved.
-
- C> MOVE A:*.* /E
- [MOVE Version 1.1]
- Press Y to copy, N to skip, ESC to stop.
-
- Copy and erase ABCD.DOC? Yes
- Copy and erase EDGHI.DOC? No
- Copy and erase JKL.DOC? Yes
- Copy and erase MNOP.DOC? Stop